home *** CD-ROM | disk | FTP | other *** search
/ Internet Publisher's Toolbox 2.0 / Internet Publisher's Toolbox.iso / html / rtf2html / wrtf2htm / global.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-21  |  1.2 KB  |  48 lines

  1. //*************************************************************
  2. //  File name: global.h
  3. //
  4. //  Description: 
  5. //
  6. //      Global include file for #defines and prototypes
  7. //
  8. //  Development Team:
  9. //
  10. //      Mike Brehm
  11. //      Irfan Gowani
  12. //
  13. //  Written by Microsoft Product Support Services, Windows Developer Support
  14. //  Copyright (c) 1992 Microsoft Corporation. All rights reserved.
  15. //*************************************************************
  16.  
  17. #include <windows.h>
  18. #include "shellapi.h"
  19.  
  20. /* Menu Defines */
  21. #define IDM_ABOUT 100
  22. #define IDM_CLEAR 101
  23. #define IDM_CONVERT 102
  24.  
  25. /* Other defines */
  26. #define FILE_NAME_LENGTH    128
  27.  
  28. /* Function Prototypes */
  29. /* Main.c */
  30.     int PASCAL WinMain (HANDLE, HANDLE, LPSTR, int);
  31.     LRESULT CALLBACK  MainWndProc (HWND , UINT, WPARAM , LPARAM );
  32.     BOOL FAR PASCAL About (HWND, unsigned, WORD, LONG);
  33.  
  34. /* Init.c */
  35.     BOOL InitApplication(HANDLE);
  36.     BOOL InitInstance (HANDLE, int);
  37.  
  38. /* EXTERNS for Global Variables */
  39.     extern HANDLE       ghInst;
  40.     extern HWND         ghWndMain;
  41.     extern HWND         ghListBox;
  42.  
  43.     extern char         szMainMenu[];
  44.     extern char         szMainClass[];
  45.  
  46.  
  47. /*** EOF: global.h ***/
  48.